comma separated values - definição. O que é comma separated values. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é comma separated values - definição

FILE FORMAT USED TO STORE DATA
.csv; Comma delimited; Comma separated values; Comma Separated Values; Comma-Separated Values; Comma separated lists; Comma-separated list; Comma seperated values; Comma separated list; Comma-seperated values; Comma-separated value; CSV (file format); CSV file; CSV-1203; Comma Separated Value; Comma separated value; COMMA-SEPARATED VALUES; Csv-schema; Comma delimited format; Text/csv; Csv file; Csv files; CSV data

comma separated values         
<file format> (CSV) A file format used as a portable representation of a database. Each line is one entry or record and the fields in a record are separated by commas. Commas may be followed by arbitrary space and/or tab characters which are ignored. If field includes a comma, the whole field must be surrounded with double quotes. (1995-05-06)
tab-separated values         
TEXT FILE FORMAT
.tsv; Tab separated values; Tab delimited; Tab-delimited; Tabulator-separated values; .tab; Tsv; Tab-separated value
<file format> (TSV) A file format used as a portable representation of a database. Each line represents one entry or record; and in every line, each field is separated from the next by a tab character (HT). Compare CSV. (2001-03-16)
TSV         
TEXT FILE FORMAT
.tsv; Tab separated values; Tab delimited; Tab-delimited; Tabulator-separated values; .tab; Tsv; Tab-separated value

Wikipédia

Comma-separated values

A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format. A CSV file typically stores tabular data (numbers and text) in plain text, in which case each line will have the same number of fields.

The CSV file format is not fully standardized. Separating fields with commas is the foundation, but commas in the data or embedded line breaks have to be handled specially. Some implementations disallow such content while others surround the field with quotation marks, which yet again creates the need for escaping if quotation marks are present in the data.

The term "CSV" also denotes several closely-related delimiter-separated formats that use other field delimiters such as semicolons. These include tab-separated values and space-separated values. A delimiter guaranteed not to be part of the data greatly simplifies parsing.

Alternative delimiter-separated files are often given a ".csv" extension despite the use of a non-comma field separator. This loose terminology can cause problems in data exchange. Many applications that accept CSV files have options to select the delimiter character and the quotation character. Semicolons are often used instead of commas in many European locales in order to use the comma as the decimal separator and, possibly, the period as a decimal grouping character.